home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 April / CHIP CD (4 - 2007).iso / beeld / 3d / ArtOfIllusion24-Mac.dmg / Art of Illusion / ArtOfIllusion.jar / bsh / commands / show.bsh < prev    next >
Text File  |  2005-05-23  |  309b  |  12 lines

  1. /**
  2.     Toggle on or off displaying the results of expressions (off by default).
  3.     When show mode is on bsh will print() the value returned by each expression 
  4.     you type on the command line.
  5. */
  6.  
  7. bsh.help.show = "usage: show()";
  8.  
  9. show()  {
  10.     this.interpreter.setShowResults( !this.interpreter.getShowResults() );
  11. }
  12.